//04_Loop concept //prac_01 //wap to print 1to10 number #include #include void main() { int i; clrscr(); i=1; while (i<11) { printf("%d \n",i); i++; } getch(); } /* ------output------ 1 2 3 4 5 6 7 8 9 10 */